home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE09
/
TWAVE
/
UNIT2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-03-28
|
522b
|
31 lines
unit Unit2;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, ExtCtrls, Imagesnd, StdCtrls, Buttons, Sndbtn;
type
TForm1 = class(TForm)
SndBitBtn1: TSndBitBtn;
SndBitBtn2: TSndBitBtn;
SndBitBtn3: TSndBitBtn;
ImageSnd1: TImageSnd;
SndBitBtn4: TSndBitBtn;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.